/* Reset some defaults */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* Site Wrapper */
.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.site-header .logo img {
  height: 50px;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #222;
  font-weight: bold;
}

.nav a:hover {
  color: #0077ff;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #0077ff10;
  border-radius: 10px;
  margin: 40px 0;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero .highlight {
  color: #0077ff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  margin: 5px;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary {
  background-color: #0077ff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #005fcc;
}

.btn-secondary {
  background-color: #fff;
  color: #0077ff;
  border: 2px solid #0077ff;
}

.btn-secondary:hover {
  background-color: #0077ff;
  color: #fff;
}

/* Services */
.services {
  margin-bottom: 60px;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  flex: 1 1 300px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card h3 {
  margin-bottom: 15px;
  color: #0077ff;
}

.card ul {
  margin-top: 10px;
  list-style: disc inside;
}

.card li {
  margin-bottom: 5px;
}

/* Contact */
.contact {
  background: #0077ff10;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact-form .form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background-color: #0077ff;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.contact-form button:hover {
  background-color: #005fcc;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #ddd;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .contact-form .form-row {
    flex-direction: column;
  }

  .nav a {
    margin-left: 10px;
  }
}